home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Windows 95 with MFC
/
Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso
/
NT
/
CODE
/
CHAP13
/
WANDERER
/
WANDERER.RC
< prev
Wrap
Text File
|
1996-04-05
|
1KB
|
39 lines
//***********************************************************************
//
// Wanderer.rc
//
//***********************************************************************
#include <afxres.h>
#include "Resource.h"
IDR_DRIVEIMAGES BITMAP Drives.bmp
IDR_LARGEDOC BITMAP Large.bmp
IDR_SMALLDOC BITMAP Small.bmp
IDR_MAINFRAME MENU
BEGIN
POPUP "&Options" {
MENUITEM "Large &Icon View", ID_VIEW_LARGE_ICON
MENUITEM "&Small Icon View", ID_VIEW_SMALL_ICON
MENUITEM "&List View", ID_VIEW_LIST
MENUITEM "&Report View", ID_VIEW_REPORT
MENUITEM SEPARATOR
MENUITEM "E&xit", ID_APP_EXIT
}
END
STRINGTABLE
BEGIN
IDR_MAINFRAME "Wanderer"
AFX_IDS_IDLEMESSAGE "Ready"
AFX_IDS_SCCLOSE "Terminate the application"
ID_VIEW_LARGE_ICON "Switch to large icon view"
ID_VIEW_SMALL_ICON "Switch to small icon view"
ID_VIEW_LIST "Switch to list view"
ID_VIEW_REPORT "Switch to report view"
ID_APP_EXIT "Terminate the application"
END